home *** CD-ROM | disk | FTP | other *** search
- #ifndef __Shell_Label_h
- #define __Shell_Label_h
-
- #ifndef __Shell_h
- #include "Shell.Shell.h"
- #endif
-
-
- Shell_rectblock *Shell_Label(
- Shell_windblock *wind, int x, int y,
- int forecol, int backcol, const char *text
- );
- /* Prints some text in a graphics window */
- /* This reserves a separate rectangle for the text, so don't */
- /* have too many. */
-
- void Shell_ReLabel( Shell_rectblock *rect, const char *text);
- /* Replaces existing text with new text. */
- /* The window is resized/redrawn if nescesary. */
-
- Shell_rectblock *Shell_Labelf(
- Shell_windblock *wind, int x, int y,
- int forecol, int backcol, const char *fmt, ...
- );
-
- void Shell_ReLabelf( Shell_rectblock *rect, const char *fmt, ...);
- void Shell_ReLabelfSlow( Shell_rectblock *rect, const char *fmt, ...);
- /* These are as above, but use like printf */
-
- #endif
-